home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Arts: Pro Software Skills - Photoshop
/
Computer Arts Pro Software Skills Photoshop.iso
/
pc
/
main.swf
/
scripts
/
DefineSprite_55
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-06-06
|
467 b
|
28 lines
function hideItems()
{
i = 0;
while(i < this.pItems.length)
{
this.pItems[i]._visible = false;
i++;
}
}
function showItems()
{
i = 0;
while(i < this.pItems.length)
{
this.pItems[i]._visible = true;
i++;
}
}
stop();
this.onRelease = function()
{
_root.unClickMenus();
_root.openFolderButton._visible = false;
this.gotoAndStop(2);
_root.setActiveItem(this);
this.showItems();
};